home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / cvs / contrib / pvcs2rcs < prev    next >
Text File  |  2005-10-16  |  39KB  |  1,163 lines

  1. #! /usr/bin/perl
  2. # ---------------------------------
  3. # This program is free software; you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation; either version 2, or (at your option)
  6. # any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11. # GNU General Public License for more details.
  12.  
  13. ###########################################################################
  14. # FUNCTION:
  15. # To recursively walk through a PVCS archive directory tree (archives
  16. # located in VCS/ or vcs/ subdirectories) and convert them to RCS archives.
  17. # The RCS archive name is the PVCS workfile name with ",v" appended.
  18. #
  19. # SYNTAX:
  20. # pvcs_to_rcs.pl --help
  21. #
  22. # where -l indicates the operation is to be performed only in the current
  23. # directory (no recursion)
  24. # EXAMPLE:
  25. # pvcs_to_rcs
  26. # Would walk through every VCS or vcs subdir starting at the current directory,
  27. # and produce corresponding RCS archives one level above the VCS or vcs subdir.
  28. # (VCS/../RCS/)
  29. #
  30. # NOTES:
  31. # * This script performs little error checking and logging
  32. #   (i.e. USE AT YOUR OWN RISK)
  33. # * This script was last tested using ActiveState's port of Perl 5.005_02
  34. #   (internalcut #507) under Win95, though it does compile under Perl-5.00404
  35. #   for Solaris 2.4 run on a Solaris 2.6 system.  The script crashed
  36. #   occasionally under ActiveState's port of Perl 5.003_07 but this stopped
  37. #   happening with the update so if you are having problems, try updating Perl.
  38. #   Upgrading to cut #507 also seemed to coincide with a large speed
  39. #   improvement, so try and keep up, hey?  :)  It was executed from MKS's
  40. #   UNIX tools version 6.1 for Win32's sh.  ALWAYS redirect your output to
  41. #   a log!!!
  42. # * PVCS archives are left intact
  43. # * RCS archives are created in VCS/../RCS/ (or ./RCS using '-pflat')
  44. # * Branch labels in this script will be attached to the CVS magic
  45. #   revision number.  For branch a.b.c of a particular file, this means
  46. #   the label will be attached to revision a.b.0.c of the converted
  47. #   file.  If you use the TrunkTip (1.*) label, be aware that it will convert
  48. #   to RCS revision 0.1, which is useless to RCS and CVS.  You'll probably
  49. #   have to delete these.
  50. # * All revisions are saved with correct "metadata" (i.e. check-in date,
  51. #   author, and log message).  Any blank log message is replaced with
  52. #   "no comment".  This is because RCS does not allow non-interactive
  53. #   check in of a new revision without a comment string.
  54. # * Revision numbers are incremented by 1 during the conversion (since
  55. #   RCS does not allow revision 1.0).
  56. # * All converted branch numbers are even (the CVS paradigm)
  57. # * Version labels are assigned to the appropriate (incremented) revision
  58. #   numbers.  PVCS allows spaces and periods in version labels while RCS
  59. #   does not.  A global search and replace converts " " and "." to "_"
  60. #   There may be other cases that ought to be added.
  61. # * Any working (checked-out) copies of PVCS archives
  62. #   within the VCS/../ or vcs/../ (or possibly ./ with '-pflat')
  63. #   will be deleted (or overwritten) depending on your mode of
  64. #   operation since the current ./ is used in the checkout of each revision.
  65. #   I suppose if development continues these files could be redirected to
  66. #   temp space rather than ./ .
  67. # * Locks on PVCS archives should be removed (or the workfiles should be
  68. #   checked-in) prior to conversion, although the script will blaze through
  69. #   the archive nonetheless (But you would lose any checked out revision(s))
  70. # * The -kb option is added to the RCS archive for workfiles with the following
  71. #   extensions: .bin .out .btl .rom .a07 .lib .exe .tco .obj .t8u .c8u .o .lku
  72. #   .a and a few others.  The %bin_ext variable holds these values in regexp
  73. #   form.
  74. # * the --force-binary option can be used to convert binary files which don't
  75. #   have proper extensions, but I'd *probably* edit the %bin_ext variable.
  76. # * This script will abort occasionally with the error "invalid revision
  77. #   number".  This is known to happen when a revision comment has
  78. #   /^\s*Rev/ (Perl regexp notation) in it.  Fix the comment and start over.
  79. #   (The directory locks and existance checking make this a fairly quick
  80. #   process.)
  81. #   Binary files which do not have their mode set properly are likely to look
  82. #   corrupted on initial checkout and use, but using
  83. #   `cvs admin -kb <workfilename>' to retroactively change the RCS keyword
  84. #   substitution mode of the file to binary (and refreshing the files in any
  85. #   local workspaces they are checked out in: `rm <workfilename>; update'
  86. #   should do the trick) should end any problems with the original import.
  87. #   If anyone has checked in changes since the import, those revisions may
  88. #   be corrupted in the imported archive and therefore those changes (commits
  89. #   of corrupted data) may need to be backed out.
  90. # * This script writes lockfiles in the RCS/ directories.  It will also not
  91. #   convert an archive if it finds the RCS Archive existant in the RCS/
  92. #   directory.  This enables the conversion to quickly pick up where it left
  93. #   off after errors or interrupts occur.  If you interrupt the script make
  94. #   sure you delete the last RCS Archive File which was being written.
  95. #   If you recieve the "Invalid revision number" error, then the RCS archive
  96. #   file for that particular PVCS file will not have been created yet.
  97. # * This script will not create lockfiles when processing single
  98. #   filenames passed into the script, for hopefully obvious reasons.
  99. #   (lockfiles lock directories - DRP)
  100. # * Log the output to a file.  That makes it real easy to grep for errors
  101. #   later.  (grep for "^[ \t]*(rcs|ci):" and be aware I might have missed
  102. #   a few cases (get?  vcs?) !!!) *** Also note that this script will
  103. #   exibit some harmless RCS errors.  Namely, it will attempt to lock
  104. #   branches which haven't been created yet. ***
  105. # * I tried to keep the error and warning info up to date, but it seems
  106. #   to mean very little.  This script almost always exits with a warning
  107. #   or an error that didn't seem to cause any harm.  I didn't trace it
  108. #   and our imported source checks out and builds...
  109. #   It is probably happening when trying to convert empty directories
  110. #   or read files (possibly checked out workfiles ) which are not
  111. #   pvcs_archives.
  112. # * You must use the -pflat option when processing single filenames
  113. #   passed as arguments to the script.  This is probably a bug.
  114. # * questions, comments, additions can be sent to info-cvs@gnu.org
  115. #########################################################################
  116.  
  117.  
  118.  
  119. #
  120. # USER Configurables
  121. #
  122.  
  123. # %bin_ext should be editable from the command line.
  124. #
  125. # NOTE:  Each possible binary extension is listed as a Perl regexp
  126. #
  127. # The value associated with each regexp key is used to print a log
  128. # message when a binary file is found.
  129. my %bin_ext =
  130.     (
  131.     '\.(?i)bin$' => "Binary",
  132.     '\.(?i)out$' => "Default Compiler Output",
  133.     '\.(?i)btl$' => "",
  134.     '\.(?i)rom$' => "",
  135.     '\.(?i)a07$' => "",
  136.     '\.(?i)lib$' => "DOS/Wintel/Netware Compiler Library",
  137.     '\.(?i)lif$' => "Netware Binary File",
  138.     '\.(?i)exe$' => "DOS/Wintel Executable",
  139.     '\.(?i)tco$' => "",
  140.     '\.(?i)obj$' => "DOS/Wintel Compiler Object",
  141.     '\.(?i)res$' => "DOS/Wintel Resource File",
  142.     '\.(?i)ico$' => "DOS/Wintel Icon File",
  143.     '\.(?i)nlm$' => "Netware Loadable Module",
  144.     '\.(?i)t8u$' => "",
  145.     '\.(?i)c8u$' => "",
  146.     '\.(?i)lku$' => "",
  147.     '\.(?i)(bmp|gif|jpg|jpeg|jfif|tif|tiff|xbm|png)$' => "Image",
  148.     '\.(?i)dll$' => "DOS/Wintel Dynamically Linked Library",
  149.     '\.(?i)class$' => "Compliled Java Class File",
  150.     '\.(?i)jar$' => "Java Archive File",
  151.     '\.(?i)war$' => "Java Web Archive File",
  152.     '\.o$' => "UNIX Compiler Object",
  153.     '\.a$' => "UNIX Compiler Library",
  154.     '\.so(\.\d+\.\d+)?$' => "UNIX Shared Library"
  155.     );
  156.  
  157. # The binaries this script is dependant on:
  158. my @bin_dependancies = ("vcs", "vlog", "rcs", "ci");
  159.  
  160. # Where we should put temporary files
  161. my $tmpdir = $ENV{TMPDIR} ? $ENV{TMPDIR} : "/var/tmp";
  162.  
  163. # We use these...
  164. use strict;
  165.  
  166. use Cwd;
  167. use File::Basename;            # For the usage message.
  168. use File::Path;
  169. use IO::File;
  170. use Getopt::Long;
  171.     $Getopt::Long::bundling = 1;
  172. #    $Getopt::Long::ignorecase = 0;
  173.  
  174. my $program = basename $0;
  175. my $usage = "\
  176. usage:  $program -h
  177.         $program [-lt] [-i vcsid] [-r flat|leaf] [-p flat|leaf] [-x rcs_extension]
  178.                  [-v none|locks|exists] [options] [path...]
  179. ";
  180.  
  181. my $help = "\
  182. $usage
  183.      ----------------------------           -----------------------------------
  184.      -h | --Help                            Print this text
  185.  
  186.      General Settings
  187.      ----------------------------           -----------------------------------
  188.      --Recurse                              Recurse through directories
  189.                                             (default)
  190.      -l | --NORecurse                       Process only .
  191.      --Errorfiles                           Save a count of conversion errors
  192.                                             in the RCS archive directory
  193.                                             (default) (unimplemented)
  194.      --NOErrorfiles                         Don't save a count of conversion
  195.                                             errors (unimplemented)
  196.      ( -m | --Mode ) Convert                Convert PVCS files to RCS files
  197.                                             (default)
  198.      ( -m | --Mode ) Verify                 Perform verification ONLY (unimplemented)
  199.      ( -v | --VERIfy ) None                 Always replace existing RCS files
  200.      ( -v | --VERIfy ) LOCKS                Same as exists unless a #conv.done
  201.                                             file exists in the RCS directory.
  202.                                             In that case, only the #conv.done
  203.                                             file's existance is verified for
  204.                                             that directory.  (default)
  205.      ( -v | --VERIfy ) Exists               Don't replace existing RCS files
  206.      ( -v | --VERIfy ) LOCKDates            Verify that an existing RCS file's
  207.                                             last modification date is older
  208.                                             than that of the lockfile
  209.                                             (unimplemented)
  210.      ( -v | --VERIfy ) Revs                 Verify that the PVCS archive files
  211.                                             and RCS archive file contain the
  212.                                             same number of corresponding
  213.                                             revisions.  Add only new revisions
  214.                                             to the RCS file.  (unimplemented)
  215.      ( -v | --VERIfy ) Full                 Perform --verify=Revs and confirm
  216.                                             that the text of the revisions is
  217.                                             identical.  Add only new revisions
  218.                                             unless an error is found.  Then
  219.                                             erase the RCS archive and recreate
  220.                                             it.  (unimplemented)
  221.      -t | --Test-binaries                   Use 'which' to check \$PATH for
  222.                                             the binaries required by this
  223.                                             script (default)
  224.      --NOTest-binaries                      Don't check for binaries
  225.      --VERBose                              Enable verbose output
  226.      --NOVerbose                            Disable verbose output (default)
  227.      -w | --Warnings                        Print warning messages (default)
  228.      --NOWarnings                           Don't print warning messages
  229.  
  230.      RCS Settings
  231.      ----------------------------           -----------------------------------
  232.      ( -r | --RCS-Dirs ) leaf               RCS files stored in ./RCS (default)
  233.      ( -r | --RCS-Dirs ) flat               RCS files stored in .
  234.                                             (unimplemented)
  235.      ( -x | --RCS-Extension )               Set RCS file extension
  236.                                             (default = ',v')
  237.      --Force-binary                         Pass '-kb' to 'rcs -i' regardless of
  238.                                             the file extension
  239.      --NOForce-binary                       Only use '-kb' when the file has
  240.                                             a binary extension (default)
  241.      --Cvs-branch-labels                    Use CVS magic branch revision
  242.                                             numbers when attaching branch
  243.                                             labels (default)
  244.      --NOCvs-branch-labels                  Attach branch labels to RCS branch
  245.                                             revision numbers (unimplemented)
  246.  
  247.      PVCS Settings
  248.      ----------------------------           -----------------------------------
  249.      ( -p | --Pvcs-dirs ) leaf              PVCS files expected in ./VCS
  250.                                             (default)
  251.      ( -p | --Pvcs-dirs ) flat              PVCS files expected in .
  252.      ( -i | --VCsid ) vcsid                 Use vcsid instead of \$VCSID
  253.  
  254.      --------------------------------------------------------------------------
  255.      The optional path argument should contain the name of a file or directory
  256.      to convert.  If not given, it will default to '.'.
  257.      --------------------------------------------------------------------------
  258. ";
  259.  
  260.  
  261.  
  262. #
  263. # Initialize globals
  264. #
  265.  
  266. my ($errors, $warnings) = (0, 0);
  267. my ($curlevel, $maxlevel);
  268. my ($rcs_base_command, $ci_base_command);
  269. my ($donefile_name, $errorfile_name);
  270.  
  271. # set up the default options
  272. my %options = (
  273.     recurse => 1,
  274.     mode => "convert",
  275.     errorfiles => 1,
  276.     'rcs-dirs' => "leaf",
  277.     'rcs-extension' => ",v",
  278.     'force-binary' => 0,
  279.     'cvs-branch-labels' => 1,
  280.     'pvcs-dirs' => "leaf",
  281.     verify => "locks",
  282.     'test-binaries' => 1,
  283.     vcsid => $ENV{VCSID} || "",
  284.     verbose => 0,
  285.     debug => 0,
  286.     warnings => 1
  287.     );
  288.  
  289.  
  290.  
  291. # This is untested except under Solaris 2.4 or 2.6 and
  292. # may not be portable
  293. #
  294. # I think the readline lib or some such has an interface
  295. # which may enable this now.  The perl installer sure looks
  296. # like it's testing this kind of thing, anyhow.
  297. sub hit_any_key
  298.     {
  299.     STDOUT->autoflush;
  300.     system "stty", "-icanon", "min", "1";
  301.  
  302.     print "Hit any key to continue...";
  303.     getc;
  304.  
  305.     system "stty", "icanon", "min", "0";
  306.     STDOUT->autoflush (0);
  307.  
  308.     print "\nI always wondered where that key was...\n";
  309.     }
  310.  
  311.  
  312.  
  313. # print the usage
  314. sub print_usage
  315.     {
  316.     my $fh = shift;
  317.     unless (ref $fh)
  318.         {
  319.         my $fdn = $fh ? $fh : "STDERR";
  320.         $fh = new IO::File;
  321.         $fh->fdopen ($fdn, "w");
  322.         }
  323.  
  324.     $fh->print ($usage);
  325.     }
  326.  
  327. # print the help
  328. sub print_help
  329.     {
  330.     my $fh = shift;
  331.     unless (ref $fh)
  332.         {
  333.         my $fdn = $fh ? $fh : "STDOUT";
  334.         $fh = new IO::File;
  335.         $fh->fdopen ($fdn, "w");
  336.         }
  337.  
  338.     $fh->print ($help);
  339.     }
  340.  
  341. # print the help and exit $_[0] || 0
  342. sub exit_help
  343.     {
  344.     print_help;
  345.     exit shift || 0;
  346.     }
  347.  
  348. sub error_count
  349.     {
  350.     my $type = shift or die "$0:  error - error_count usage:  error_count type [, ref] [, LIST]\n";
  351.     my $error_count_ref;
  352.     my $outstring;
  353.  
  354.     if (ref ($_[0]) && ref ($_[0]) == "SCALAR")
  355.         {
  356.         $error_count_ref = shift;
  357.         }
  358.     else
  359.         {
  360.         $error_count_ref = \$errors;
  361.         }
  362.     $$error_count_ref++;
  363.  
  364.     push @_, "something wrong.\n" unless ( @_ > 0 );
  365.  
  366.     $outstring = sprintf "$0:  $type - " . join ("", @_);
  367.     $outstring .= sprintf " - $!\n" unless ($outstring =~ /\n$/);
  368.  
  369.     print STDERR $outstring;
  370.  
  371.     if ($options{errorfiles})
  372.         {
  373.         my $fh = new IO::File ">>$errorfile_name" or new IO::File ">$errorfile_name";
  374.         if ($fh)
  375.             {
  376.             $fh->print ($$error_count_ref . "\n");
  377.             $fh->print ($outstring);
  378.             $fh->close;
  379.             }
  380.         else
  381.             {
  382.             my $cd = cwd;
  383.             print STDERR "$0: error - failed to open errorfile $cd/$errorfile_name - $!\n"
  384.                     if ($options{debug});
  385.             }
  386.         }
  387.  
  388.     return $$error_count_ref;
  389.     }
  390.  
  391.  
  392.  
  393. # the main procedure that is run once in each directory
  394. sub execdir
  395.     {
  396.     my $dir = shift;
  397.     my ($errors, $warnings) = (0, 0);                    # We return these error counters
  398.     my $old_dir = cwd;
  399.  
  400.     local ($_, @_);
  401.  
  402.     my $i;                                    # Generic counter
  403.     my ($pvcsarchive, $workfile, $rcsarchive);                # .??v, checked out file, and ,v files,
  404.                                         # respectively
  405.     my ($rev_count, $first_vl, $last_vl, $description,
  406.             $rev_index, @rev_num, %checked_in, %author,
  407.             $relative_comment_index, @comment_string,
  408.             %comment);
  409.     my ($num_version_labels, $label_index, @label_revision, $label,
  410.             @new_label, $rcs_rev);
  411.     my ($revision, %rcs_rev_num);
  412.     my ($get_output, $rcs_output, $ci_output, $mv_output);
  413.     my ($ci_command, $rcs_command, $wtr);
  414.     my @hits;
  415.     my ($num_fields);
  416.     my $skipdirlock;                            # if true, don't write conv.out
  417.                                         # used only for single file operations
  418.                                         # at the moment
  419.     my $cd;
  420.  
  421.     my @filenames;
  422.     # We may have recieved a single file name to process...
  423.     if ( -d $dir )
  424.         {
  425.         # change into the directory to be processed
  426.         # open the current directory for listing
  427.         # initialize the list of filenames
  428.         # and set filenames equal to directory listing
  429.         unless ( ( chdir $dir ) and ( opendir CURDIR, "." ) and ( @filenames = readdir CURDIR ) )
  430.             {
  431.             $cd = cwd;
  432.             error_count 'error', \$errors, "skipping directory $dir from $cd";
  433.             chdir $old_dir or die "Failed to restore original directory ($old_dir): ", $!, ", stopped";
  434.             return ($errors, $warnings);
  435.             }
  436.  
  437.         # clean up by closing the directory
  438.         closedir(CURDIR);
  439.         }
  440.     elsif ( -f $dir ) # we recieved a single file
  441.         {
  442.         push @filenames, $dir;
  443.         $skipdirlock = 1;
  444.         }
  445.     else
  446.         {
  447.         $cd = cwd;
  448.         error_count 'error', \$errors, "no such directory/file $dir from $cd\n";
  449.         # chdir $old_dir or die "Failed to restore original directory ($old_dir): ", $!, ", stopped";
  450.         return ($errors, $warnings);
  451.         }
  452.  
  453.     # save the current directory
  454.     $cd = cwd;
  455.  
  456.     # increment the global $curlevel variable
  457.     $curlevel = $curlevel +1;
  458.  
  459.     # initialize a list for any subdirectories and any files
  460.     # we need to process
  461.     my $vcsdir = ""; 
  462.     my (@subdirs, $fn, $file, @files, @pvcsarchives);
  463.  
  464.     # print "$cd:  " . join (", ", @filenames) . "\n";
  465.     # hit_any_key;
  466.  
  467.     (@files, @pvcsarchives) = ( (), () );
  468.     # begin a for loop to execute on each filename in the list @filename
  469.     foreach $fn (@filenames)
  470.         {
  471.         # if the file is a directory...
  472.         if (-d $fn)
  473.             {
  474.             # then if we are not expecting a flat arrangement of pvcs files
  475.             # and we found a vcs directory add its files to @pvcsarchives
  476.             if (!$options{'pvcs-dirs-flat'} and $fn =~ /^vcs$/i)
  477.                 {
  478.                 if ($options{verify} =~ /^locks$/ ) {
  479.                 if ( -f $donefile_name ) {
  480.                     print "Verified existence of lockfile $cd/$donefile_name."
  481.                             . ( ($options{mode} =~ /^convert$/) ? "  Skipping directory." : "" )
  482.                             . "\n" if ($options{verbose});
  483.                     next;
  484.                 } elsif ( $options{mode} =~ /^verify$/ ) {
  485.                     print "No lockfile found for $cd .\n";
  486.                     next;
  487.                 }
  488.                 }
  489.  
  490.                 # else add the files in the vcs dir to our list of files to process
  491.                 error_count 'warning', \$warnings, "Found two vcs dirs in directory $cd.\n"
  492.                         if ($vcsdir and $options{warnings});
  493.  
  494.                 $vcsdir = $fn;
  495.  
  496.                 unless ( ( opendir VCSDIR, $vcsdir ) and ( @files = readdir VCSDIR ) )
  497.                     {
  498.                     error_count 'error', \$errors, "skipping directory &cd/$fn";
  499.                     next;
  500.                     }
  501.                 closedir VCSDIR;
  502.  
  503.                 # and so we don't need to worry about where these
  504.                 # files came from later...
  505.                 foreach $file (@files)
  506.                     {
  507.                     push @pvcsarchives, "$vcsdir/$file" if (-f "$vcsdir/$file");
  508.                     }
  509.  
  510.                 # don't want recursion here...
  511.                 @pvcsarchives = grep !/^\.\.?$/, @pvcsarchives;
  512.                 }
  513.             elsif ($fn !~ /^\.\.?$/)
  514.                 {
  515.                 next if (!$options{'rcs-dirs-flat'} and $fn =~ /^rcs$/i);
  516.                 # include it in @subdir if it's not a parent directory
  517.                 push(@subdirs,$fn);
  518.                 }
  519.             }
  520.         # else if we are processing a flat arrangement of pvcs files...
  521.         elsif ($options{'pvcs-dirs-flat'} and -f $fn)
  522.             {
  523.             if ($options{verify} =~ /^locks$/) {
  524.                 if ( -f $donefile_name) {
  525.                     print "Found lockfile $cd/$donefile_name."
  526.                         . ( ($options{mode} =~ /^convert$/) ? "  Skipping directory." : "" )
  527.                         . "\n" if ($options{verbose});
  528.                     last;
  529.                 } elsif ($options{mode} =~ /^verify$/) {
  530.                     print "No lockfile found for $cd .\n";
  531.                     last;
  532.                 }
  533.             }
  534.             # else add this to the list of files to process
  535.             push (@pvcsarchives, $fn);
  536.             }
  537.         }
  538.  
  539.     # print "pvcsarchives:  " . join (", ", @pvcsarchives) . "\n";
  540.     # print "subdirs:  " . join (", ", @subdirs) . "\n";
  541.     # hit_any_key;
  542.  
  543.     # for loop of subdirs
  544.     foreach (@subdirs)
  545.         {
  546.         # run execdir on each sub dir
  547.         if ($maxlevel >= $curlevel)
  548.             {
  549.             my ($e, $w) = execdir ($_);
  550.             $errors += $e;
  551.             $warnings += $w;
  552.             }
  553.         }
  554.  
  555.     # Print output header for each directory
  556.     print("Directory: $cd\n");
  557.  
  558.     # the @files variable should already contain the list of files
  559.     # we should attempt to process
  560.     if ( @pvcsarchives && ( $options{mode} =~ /^convert$/ ) )
  561.         {
  562.         # create an RCS directory in parent to store RCS files in
  563.         if ( !( $options{'rcs-dirs-flat'} or (-d "RCS") or mkpath ( "RCS" ) ) )
  564.             {
  565.              error_count 'error', \$errors, "failed to make directory $cd/RCS - skipping directory $cd";
  566.             @pvcsarchives = ();
  567.             # after all, we have nowhere to put them...
  568.             }
  569.         }
  570.  
  571.     # begin a for loop to execute on each filename in the list @files
  572.     foreach $pvcsarchive (@pvcsarchives)
  573.         {
  574.         my $got_workfile = 0;
  575.         my $got_version_labels = 0;
  576.         my $got_description = 0;
  577.         my $got_rev_count = 0;
  578.  
  579.         my $abs_file = $cd . "/" . $pvcsarchive;
  580.  
  581.         print("Verifying $abs_file...\n") if ($options{verbose});
  582.  
  583.         print "vlog $pvcsarchive\n";
  584.         my $vlog_output = `vlog $pvcsarchive`;
  585.  
  586.         # Split the vcs status output into individual lines
  587.         my @vlog_strings = split /\n/, $vlog_output;
  588.         my $num_vlog_strings = @vlog_strings;
  589.         $_ = $vlog_strings[0];
  590.         if ( /^\s*$/ || /^vlog: warning/ )
  591.             {
  592.             error_count 'warning', \$warnings, "$abs_file is NOT a valid PVCS archive!!!\n";
  593.             next;
  594.             }
  595.  
  596.         my $num;
  597.         # Collect all vlog output into appropriate variables
  598.         #
  599.         # This will ignore at the very least the /^\s*Archive:\s*/ field
  600.         # and maybe more.  This should not be a problem.
  601.         for ( $num = 0; $num < $num_vlog_strings; $num++ )
  602.             {
  603.             # print("$vlog_strings[$num]\n");
  604.             $_ = $vlog_strings[$num];
  605.  
  606.             if( ( /^Workfile:\s*/ ) && (!$got_workfile ) )
  607.                 {
  608.                 my $num_fields;
  609.  
  610.                 $got_workfile = 1;
  611.                 # get the string to the right of the above search (with any path stripped)
  612.                 $workfile = $';
  613.                 $num_fields = split /[\/\\]/, $workfile;
  614.                 if ( $num_fields > 1 ) 
  615.                     { 
  616.                     $workfile = $_[$num_fields - 1 ];
  617.                     }
  618.  
  619.                 $rcsarchive = $options{'rcs-dirs-flat'} ? "" : "RCS/";
  620.                 $rcsarchive .= $workfile;
  621.                 $rcsarchive .= $options{'rcs-extension'} if ($options{'rcs-extension'});
  622.                 print "Workfile is $workfile\n" if ($options{debug});
  623.                 }
  624.  
  625.             elsif ( ( /^Rev count:\s*/ ) && (!$got_rev_count ) )
  626.                 {
  627.                 $got_rev_count = 1;
  628.                 # get the string to the right of the above search
  629.                 $rev_count = $';
  630.                 print "Revision count is $rev_count\n";
  631.                 }
  632.  
  633.             elsif ( ( /^Version labels:\s*/ ) && (!$got_version_labels ) )
  634.                 {
  635.                 $got_version_labels = 1;
  636.                 $first_vl = $num+1;
  637.                 print "Version labels start at $first_vl\n" if ($options{debug});
  638.                 }
  639.  
  640.             elsif ( ( /^Description:\s*/ ) && (!$got_description ) )
  641.                 {
  642.                 $got_description = 1;
  643.                 $description = $vlog_strings[$num+1];
  644.                 print "Description is `$description'\n" if ($options{debug});
  645.                 $last_vl = $num - 1;
  646.                 }
  647.  
  648.             elsif ( /^Rev\s+/ ) # get all the revision information at once
  649.                 {
  650.                 $rev_index = 0;
  651.                 @rev_num = ();
  652.                 while ( $rev_index < $rev_count )
  653.                     {
  654.                     $_ = $vlog_strings[$num];
  655.                     /^\s*Rev\s+(\d+\.(\d+\.\d+\.)*\d+)$/;
  656.                     $rev_num[$rev_index] = $1;
  657.                     print "Found revision: $rev_num[$rev_index]\n" if ($options{debug});
  658.                     die "Not a valid revision ($rev_num[$rev_index]).\n"
  659.                         if ($rev_num[$rev_index] !~ /^(\d+\.)(\d+\.\d+\.)*\d+$/);
  660.  
  661.                     $_ = $vlog_strings[$num+1];
  662.                     /^\s*Locked\s*/ and $num++;
  663.  
  664.                     $_ = $vlog_strings[$num+1];
  665.                     /^\s*Checked in:\s*/;
  666.                     $checked_in{$rev_num[$rev_index]} = "\"" . $' . "\"";
  667.                     print "Checked in: $checked_in{$rev_num[$rev_index]}\n" if ($options{debug});
  668.  
  669.                     $_ = $vlog_strings[$num+3];
  670.                     /^\s*Author id:\s*/;
  671.                     my @fields = split;
  672.                     $author{$rev_num[$rev_index]} = "\"" . $fields[2] . "\"";
  673.                     print "Author: $author{$rev_num[$rev_index]}\n" if ($options{debug});
  674.  
  675.                     my @branches = ();
  676.                     $_ = $vlog_strings[$num+1];
  677.                     if (/^\s*Branches:\s*/)
  678.                         { 
  679.                         $num++;
  680.                         @branches = split /\s+/, $';
  681.                         }
  682.  
  683.                     $relative_comment_index = 0;
  684.                     @comment_string = ();
  685.                      while( ( ( $num + 4 + $relative_comment_index ) < @vlog_strings)
  686.                             && ( $vlog_strings[$num+4+$relative_comment_index]
  687.                                 !~ /^\s*Rev\s+(\d+\.(\d+\.\d+\.)*\d+)$/ ) )
  688.                         {
  689.                         # We need the \n added for multi-line comments.  There is no effect for
  690.                         # single-line comments since RCS inserts the \n if it doesn't exist already
  691.                         # print "Found commment line: $vlog_strings[$num+4+$relative_comment_index]\n"
  692.                         #    if ($options{debug});
  693.                         push @comment_string, $vlog_strings[$num+4+$relative_comment_index], "\n";
  694.                         $relative_comment_index += 1;
  695.                         }
  696.                     # print "Popped from comment: " . join ("", splice (@comment_string, -2)) 
  697.                     #        . "\n"
  698.                     #    if ($options{debug});
  699.                     # Pop the "-+" or "=+" line from the comment
  700.                     while ( (pop @comment_string) !~ /^-{35}|={35}$/ )
  701.                         {}
  702.                     $comment{$rev_num[$rev_index]} = join "", @comment_string;
  703.  
  704.                     $num += ( 4 + $relative_comment_index );
  705.                     print "Got comment for $rev_num[$rev_index]\n" if ($options{debug});
  706.                     print "comment string: $comment{$rev_num[$rev_index]}\n" if ($options{debug});
  707.                     $rev_index += 1;
  708.                     } # while ( $rev_index < $rev_count )
  709.                 $num -= 1; #although there should be nothing left for this to matter
  710.                 } # Get Rev information
  711.             } # for ($num = 0; $num < $num_vlog_strings; $num++)
  712.         # hit_any_key if ($options{debug});
  713.         # Create RCS revision numbers corresponding to PVCS version numbers
  714.         foreach $revision (@rev_num)
  715.             {
  716.             $rcs_rev_num{ $revision } = &pvcs_to_rcs_rev_number( $revision );
  717.             print"PVCS revision is $revision; RCS revision is $rcs_rev_num{ $revision }\n"
  718.                     if ($options{debug});
  719.             }
  720.  
  721.         # Sort the revision numbers - PVCS and RCS store them in different orders
  722.         # Clear @_ so we don't pass anything in by accident...
  723.         @_ = ();
  724.         @rev_num = sort revisions @rev_num;
  725.         print "Sorted rev_nums:\n" . join ("\n", @rev_num) . "\n" if ($options{debug});
  726.         # hit_any_key;
  727.  
  728.         # Loop through each version label, checking for need to relabel ' ' with '_'.
  729.         $num_version_labels = $last_vl - $first_vl + 1;
  730.         print "Version label count is $num_version_labels\n";
  731.         for( $i = $first_vl; $i <= $last_vl; $i += 1 )
  732.             {
  733.             # print("$vlog_strings[$i]\n");
  734.             $label_index = $i - $first_vl;
  735.             $_=$vlog_strings[$i];
  736.             print "Starting with string '$_'\n" if ($options{debug});
  737.             my @fields = split /\"/;
  738.             $label = $fields[1];
  739.             print "Got label '$label'\n" if ($options{debug});
  740.             @fields = split /\s+/, $fields[2];
  741.             $label_revision[$label_index] = $fields[2];
  742.             print "Original label is $label_revision[$label_index]\n" if ($options{debug});
  743.  
  744.             # Create RCS revision numbers corresponding to PVCS version numbers by
  745.             # adding 1 to the revision number (# after last .)
  746.             $label_revision[ $label_index ] = pvcs_to_rcs_rev_number( $label_revision [ $label_index ] );
  747.             # replace ' ' with '_', if needed
  748.             $_=$label;
  749.             $new_label[$label_index] = $label;
  750.             $new_label[$label_index] =~ s/ /_/g;
  751.             $new_label[$label_index] =~ s/\./_/g;
  752.             $new_label[$label_index] = "\"" . $new_label[$label_index] . "\"";
  753.             print"Label $new_label[$label_index] is for revision $label_revision[$label_index]\n" if ($options{debug});
  754.             }
  755.         
  756.         ##########
  757.         #
  758.         # See if the RCS archive is up to date with the PVCS archive
  759.         #
  760.         ##########
  761.         if ($options{verify} =~ /^locks|exists$/ and -f $rcsarchive)
  762.             {
  763.             print "Verified existence of $cd/$rcsarchive."
  764.                     . ( ($options{mode} =~ /^convert$/) ? "  Skipping." : "" )
  765.                     . "\n" if ($options{verbose});
  766.             next;
  767.             }
  768.  
  769.         # Create RCS archive and check in all revisions, then label.
  770.         my $first_time = 1;
  771.         foreach $revision (@rev_num)
  772.             {
  773.             # print "get -p$revision $pvcsarchive >$workfile\n";
  774.             print "get -r$revision $pvcsarchive\n";
  775.             # $vcs_output = `vcs -u -r$revision $pvcsarchive`;
  776.             # $get_output = `get -p$revision $pvcsarchive >$workfile`;
  777.             $get_output = `get -r$revision $pvcsarchive`;
  778.  
  779.             # if this is the first time, delete the rcs archive if it exists
  780.             # need for $options{verify} == none
  781.             unlink $rcsarchive if ($first_time and $options{verify} =~ /^none$/ and -f $rcsarchive);
  782.  
  783.             # Also check here whether this file ought to be "binary"
  784.             if ( $first_time )
  785.                 {
  786.                 $rcs_command = "$rcs_base_command -i";
  787.                 if ( ( @hits = grep { $workfile =~ /$_/ } keys %bin_ext ) || $options{'force-binary'} )
  788.                     {
  789.                     $rcs_command .= " -kb";
  790.                     $workfile =~ /$hits[0]/ if (@hits);
  791.                     print "Binary attribute -kb added ("
  792.                         . (@hits ? "file type is '$bin_ext{$hits[0]}' for extension '$&'" : "forced")
  793.                         . ")\n";
  794.                     }
  795.  
  796.                 $rcs_command .= " $workfile";
  797.  
  798.                 # print and execute the rcs archive initialization command
  799.                 print "$rcs_command\n";
  800.                 $wtr = new IO::File "|$rcs_command";
  801.                 $wtr->print ($description);
  802.                 $wtr->print ("\n") unless ($description =~ /\n$/s);
  803.                 $wtr->print (".\n");
  804.                 $wtr->close;
  805.  
  806.                 # $rcs_output = `$rcs_base_command -i -kb $workfile`;
  807.                 }
  808.  
  809.             # if this isn't the first time, we need to lock the rcs branch
  810.             #
  811.             # This is a little messy, but it works.  Some extra locking is attempted.
  812.             # (This happens the first time a branch is used, at the least)
  813.             my $branch = "";
  814.             my @branch;
  815.             @branch = split /\./, $rcs_rev_num{$revision};
  816.             pop @branch;
  817.             $branch = join ".", @branch;
  818.  
  819.             $rcs_output = `$rcs_base_command -l$branch $workfile` if (!$first_time);
  820.  
  821.             # If an empty comment is specified, RCS will not check in the file;
  822.             # check for this case.    (but an empty -t- description is fine - go figure!)
  823.             # Since RCS will pause and ask for a comment if one is not given,
  824.             # substitute a dummy comment "no comment".
  825.             $comment{$revision} =~ /^\s*$/ and $comment{$revision} = "no comment\n";
  826.  
  827.             $ci_command = $ci_base_command;
  828.             $ci_command .= " -f -r$rcs_rev_num{$revision} -d$checked_in{$revision}"
  829.                     . " -w$author{$revision}";
  830.  
  831.             $ci_command .= " $workfile";
  832.  
  833.             # print and execute the ci command
  834.             print "$ci_command\n";
  835.             $wtr = new IO::File "|$ci_command";
  836.             $wtr->print ($comment{$revision});
  837.             $wtr->print ("\n") unless ($comment{$revision} =~ /\n$/s);
  838.             $wtr->print (".\n");
  839.             $wtr->close;
  840.             # $ci_output = `$ci_command`;
  841.             # $ci_output = `cat $tmpdir/ci.out`;
  842.  
  843.             $first_time = 0 if ($first_time);
  844.             } # foreach revision
  845.  
  846.         # Attach version labels
  847.         for( $i = $num_version_labels - 1; $i >= 0; $i -= 1 )
  848.             {
  849.             # print "rcs -x,v -n$new_label[$i]:$label_revision[$i] $workfile\n";
  850.             $rcs_output = `$rcs_base_command -n$new_label[$i]:$label_revision[$i] $workfile`;
  851.             print "Version label $new_label[$i] added to revision $label_revision[$i]\n";
  852.             } # foreach label
  853.  
  854.         # hit_any_key;
  855.         } # foreach pvcs archive file
  856.  
  857.     # We processed a vcs directory, so if there were any files, lock it.
  858.     # We are guaranteed to have made the attempt at
  859.     #
  860.     # $skipdirlock gets set if a single file name was passed to this function to enable
  861.     # a '$0 *' operation...
  862.     if ( @pvcsarchives && !$skipdirlock)
  863.         {
  864.         my $fh = new IO::File ">>$donefile_name" or new IO::File ">$donefile_name";
  865.         if ($fh)
  866.             {
  867.             $fh->close;
  868.             }
  869.         else
  870.             {
  871.             error_count 'error', \$errors, "couldn't create lockfile $cd/$donefile_name";
  872.             }
  873.         }
  874.  
  875.     $curlevel = $curlevel - 1;
  876.  
  877.     chdir $old_dir or die "Failed to restore original directory ($old_dir): ", $!, ", stopped";
  878.     return ($errors, $warnings);
  879.     }
  880.  
  881.  
  882.  
  883. #
  884. # This function effectively does a cmp between two revision numbers
  885. # It is intended to be passed into Perl's sort routine.
  886. #
  887. # the pvcs_out is not implemented well.  It should probably be
  888. # returnning $b[0] <=> $a[0] rather than $a[0] <=> $b[0]
  889. #
  890. # The @_ argument implementation was going to be used for revision
  891. # comparison as an aid to remove the /^\sRev/ in revision comment
  892. # error.  The effort was fruitless at the time.
  893. sub revisions
  894.     {
  895.     my @a = split /\./, (defined $a) ? $a : shift;
  896.     my @b = split /\./, (defined $b) ? $b : shift;
  897.     my $function = @_ ? shift : 'rcs_in';
  898.     my ($i, $ret_val);
  899.  
  900.     die "Not enough arguments to revisions : a = ", join (".", @a),
  901.             "; b = ", join (".", @b), ", stopped"
  902.         unless (@a and @b);
  903.  
  904.     for ($i = 0; $i < scalar( @a ) && $i < scalar( @b ); $i++)
  905.         {
  906.         $a[$i] == $b[$i] or return ($a[$i] <=> $b[$i]);
  907.         }
  908.  
  909.     return 0 if (scalar (@a) == scalar (@b));
  910.  
  911.     if ($function eq 'rcs_in')
  912.         {
  913.         return (($i == @b) || -1);
  914.         }
  915.     elsif ($function eq 'pvcs_out')
  916.         {
  917.         return (($i == @a) || -1);
  918.         }
  919.     else
  920.         {
  921.         die "error - Invalid function type passed to revisions ($function)", ", stopped";
  922.         }
  923.     }
  924.  
  925.  
  926.  
  927. sub pvcs_to_rcs_rev_number
  928.     {
  929.     my($input, $num_fields, @rev_string, $return_rev_num, $i);
  930.  
  931.     $input = $_[0];
  932.     $num_fields = split /\./, $input;
  933.     @rev_string = @_;
  934.     # @rev_string[$num_fields-1] += 1;
  935.  
  936.     for( $i = 1; $i < $num_fields; $i += 1 )
  937.         {
  938.         if ( $i % 2 )
  939.             {
  940.             # DRP: 10/1
  941.             # RCS does not allow revision zero
  942.             $rev_string[ $i ] += 1;
  943.             }
  944.         elsif ( $i )
  945.             {
  946.             # DRP: 10/1
  947.             # Branches must have even references for compatibility
  948.             # with CVS's magic branch numbers.
  949.             # (Indexes 2, 4, 6...)
  950.             $rev_string[ $i ] *= 2;
  951.             }
  952.         }
  953.  
  954.     # If this is a branch revision # (PVCS: a.b.c.*) then we want the CVS
  955.     # revision # instead.  It's okay to do this conversion here since we
  956.     # never commit to branches.  We'll only get a PVCS revision # in that
  957.     # form when looking through the revision labels.
  958.     if ($input =~ /\*$/)
  959.         {
  960.         pop @rev_string;
  961.         push @rev_string, splice (@rev_string, -1, 1, "0");
  962.         }
  963.  
  964.     $return_rev_num = join ".", @rev_string;
  965.     return $return_rev_num;
  966.     }
  967.  
  968.  
  969.  
  970.  
  971.  
  972. ###
  973. ###
  974. ###
  975. ###
  976. ###
  977. ###   MAIN program: checks to see if there are command line parameters
  978. ###
  979. ###
  980. ###
  981. ###
  982. ###
  983.  
  984.  
  985.  
  986.  
  987.     
  988. # and read the options
  989. die $usage unless GetOptions (\%options, "h|help" => \&exit_help, 
  990.         "recurse!", "mode|m=s", "errorfiles!", "l", "rcs-dirs|rcs-directories|r=s",
  991.         "pvcs-dirs|pvcs-directories|p=s", "test-binaries|t!",
  992.         "rcs-extension=s", "verify|v=s", "vcsid|i=s", "verbose!", "debug!",
  993.         "force-binary!", "cvs-branch-labels!", "warnings|w!");
  994.  
  995.  
  996.  
  997. #
  998. # Special processing for -l !^#%$^@#$%#$
  999. #
  1000. # At the moment, -l overrides --recurse, regardless of the order the
  1001. # options were passed in
  1002. #
  1003. $options{recurse} = 0 if defined $options{l};
  1004. delete $options{l};
  1005.  
  1006.  
  1007.  
  1008. # Make sure we got acceptable values for rcs-dirs and pvcs-dirs
  1009. my @hits = grep /^$options{'rcs-dirs'}/i, ("leaf", "flat");
  1010. @hits == 1 or die
  1011.           "$0: $options{'rcs-dirs'} invalid argument to --rcs-dirs or ambiguous\n"
  1012.         . "    abbreviation.\n"
  1013.         . "    Must be one of: 'leaf' or 'flat'.\n"
  1014.         . $usage;
  1015. $options{'rcs-dirs'} = $hits[0];
  1016. $options{'rcs-dirs-flat'} = ($options{'rcs-dirs'} =~ /flat/);
  1017. delete $options{'rcs-dirs'};
  1018.  
  1019. @hits = grep /^$options{'pvcs-dirs'}/i, ("leaf", "flat");
  1020. @hits == 1 or die
  1021.           "$0: $options{'pvcs-dirs'} invalid argument to --pvcs-dirs or ambiguous\n"
  1022.         . "    abbreviation.\n"
  1023.         . "    Must be one of: 'leaf' or 'flat'.\n"
  1024.         . $usage;
  1025. $options{'pvcs-dirs'} = $hits[0];
  1026. $options{'pvcs-dirs-flat'} = ($options{'pvcs-dirs'} =~ /flat/);
  1027. delete $options{'pvcs-dirs'};
  1028.  
  1029. # and for verify
  1030. @hits = grep /^$options{verify}/i, ("none", "locks", "exists", "lockdates", "revs", "full");
  1031. @hits == 1 or die
  1032.           "$0: $options{verify} invalid argument to --verify or ambiguous\n"
  1033.         . "    abbreviation.\n"
  1034.         . "    Must be one of: 'none', 'locks', 'exists', 'lockdates', 'revs',\n"
  1035.         . "    or 'full'.\n"
  1036.         . $usage;
  1037. $options{verify} = $hits[0];
  1038. $options{verify} =~ /^none|locks|exists$/ or die
  1039.           "$0: --verify=$options{verify} unimplemented.\n"
  1040.         . $usage;
  1041.  
  1042. # and mode
  1043. @hits = grep /^$options{mode}/i, ("convert", "verify");
  1044. @hits == 1 or die
  1045.           "$0: $options{mode} invalid argument to --mode or ambiguous abbreviation.\n"
  1046.         . "    Must be 'convert' or 'verify'.\n"
  1047.         . $usage;
  1048. $options{mode} = $hits[0];
  1049.  
  1050. $options{'cvs-branch-labels'} or die
  1051.           "$0: RCS Branch Labels unimplemented.\n"
  1052.         . $usage;
  1053.  
  1054. # export VCSID into th environment for ourselves and our children
  1055. $ENV{VCSID} = $options{vcsid};
  1056.  
  1057.  
  1058.  
  1059. #
  1060. # Verify we have all the binary executables we need to run this script
  1061. #
  1062. # Allowed this feature to be disabled in case which is missing or we are
  1063. # running on a system which does not return error codes properly (e.g. WIN95)
  1064. #
  1065. #      -- i.e. I don't feel like grepping output yet. --
  1066. #
  1067. my @missing_binaries = ();
  1068. if ($options{'test-binaries'})
  1069.     {
  1070.     foreach (@bin_dependancies)
  1071.         {
  1072.         my $output = qx/which $_ 2>&1/;
  1073.         print $output if $options{verbose} && $output;
  1074.         if ($? || $output =~ /^no/)
  1075.             {
  1076.             push @missing_binaries, $_;
  1077.             }
  1078.         }
  1079.  
  1080.     if (scalar @missing_binaries)
  1081.         {
  1082.         print STDERR "The following executables were not found in your PATH: "
  1083.             . join ( " ", @missing_binaries )
  1084.             . "\n"
  1085.             . "You must correct this before continuing.\n";
  1086.         exit 1;
  1087.         }
  1088.     }
  1089. delete $options{'test-binaries'};
  1090.  
  1091.  
  1092.  
  1093. #
  1094. # set up our base archive manipulation commands
  1095. #
  1096.  
  1097. # set up our rcs_command mods
  1098. $rcs_base_command = "rcs";
  1099. $rcs_base_command .= " -x$options{'rcs-extension'}" if ($options{'rcs-extension'});
  1100.  
  1101. # set up our rcs_command mods
  1102. $ci_base_command = "ci";
  1103. $ci_base_command .= " -x$options{'rcs-extension'}" if ($options{'rcs-extension'});
  1104.  
  1105.  
  1106.  
  1107. #
  1108. # So our logs fill in a manner we can monitor with 'tail -f' fairly easily:
  1109. #
  1110. STDERR->autoflush (1);
  1111. STDOUT->autoflush (1);
  1112.  
  1113.  
  1114.  
  1115. # Initialize the globals we use to keep track of recursion
  1116. if ($options{recurse})
  1117.     {
  1118.     $maxlevel = 10000;        # Arbitrary recursion limit
  1119.     }
  1120. else
  1121.     {
  1122.     $maxlevel = 1;
  1123.     }
  1124. delete $options{recurse};
  1125.  
  1126. # So we can lock the directories behind us
  1127. $donefile_name = $options{'rcs-dirs-flat'} ? "" : "RCS/";
  1128. $errorfile_name = $donefile_name . "#conv.errors";
  1129. $donefile_name .= "#conv.done";
  1130.  
  1131.  
  1132.  
  1133. #
  1134. # start the whole thing and drop the return code on exit
  1135. #
  1136. push (@ARGV, ".") unless (@ARGV);
  1137. while ($_ = shift)
  1138.     {
  1139.     # reset the recursion level (corresponds to directory depth)
  1140.     # level 0 is the first directory we enter...
  1141.     $curlevel = -1;
  1142.     my ($e, $w) = execdir($_);
  1143.     $errors += $e;
  1144.     $warnings += $w;
  1145.     }
  1146.  
  1147.  
  1148.  
  1149. print STDERR "$0:  " . ($errors ? "Aborted" : "Done") . ".\n";
  1150. print STDERR "$0:  ";
  1151. print STDERR ($errors ? $errors : "No") . " error" . (($errors != 1) ? "s" : "");
  1152. print STDERR ", " . ($warnings ? $warnings : "no") . " warning" . (($warnings != 1) ? "s" : "")
  1153.         if ($options{warnings});
  1154. print STDERR ".\n";
  1155.  
  1156.  
  1157.  
  1158. #
  1159. # Woo-hoo!  We made it!
  1160. #
  1161. exit $errors;
  1162.